@import url('https://fonts.googleapis.com/css?family=Josefin+Sans|Nunito|Oswald|Poppins|Rubik|Ubuntu');
@import url('https://fonts.googleapis.com/css?family=Roboto&display=swap');

html {
    overflow: hidden;
}

p {
    margin: 0 !important;
}

._overcast_ {
    
    z-index: -2;

    margin-left: -288px;
    margin-top: -800px;

    position: absolute;
    width: 1920px;
    height: 1080px;
}

.character_undercast {

    position: absolute;
    background-color: rgba(26, 26, 26, 1);

    z-index: -1;
    top: 57%;
    left: 64.8%;
    transform: translate(-50%, -50%);
    width: 10000px;
    height: 10000px;  
    cursor: not-allowed;
}

.main-container {
    display: none;
    cursor: default;
    width: 70vw;
    margin: auto;
    position: relative;
    top: 35vh; 
}

.logga {
    position: absolute;
    width: 400px;
    height: 400px;
    left: 50.3%;
    top: 12%;
    transform: translate(-50%, -110%)
}

.character-container {
    width: 60%;
    margin: auto;
    display: flex;
    justify-content: space-between;

    left: 0;
    top: 0;
    right: 0;
    margin-left: 260px;
}

.hr_top {
    margin-top: 4px;
    margin-left: -5px;
    margin: 6px;
    border-top: 2px solid rgba(107, 107, 107, 1);
}

.over_characters {
    margin: 10px;
    z-index: 99999;
    border-top: 2px solid rgb(255, 255, 255);
}

.character-box {
    color: rgb(255, 251, 0);
    border: 2px solid rgba(33, 33, 33, 1);
    background-color: rgba(28, 28, 28, 1);
    border-radius: 4px;
    text-align: center;
    
    width: 350px;
    height: 350px;

    margin: -40px;
    margin-left: -250px;
    margin-top: 260px;

    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.3);
    
    transition: all 0.5s ease-in-out;
    cursor: pointer;
}

.character-info {
    color: rgb(211, 211, 211);
    text-align: left!important;
    text-indent: 12px;
    margin-left: 1px;
}

.character-info-new {
    color: rgb(211, 211, 211);
    font-weight: 400;
    text-indent: 12px;
    margin-left: 1px;
}

.character-fullname {
    font-size: 18px;
    margin-top: 25px;
    text-align: left;
    text-indent: 12px;
    letter-spacing: 3px;
}

.buttons {
    margin-top: 207px;
    margin-left: -140px;
    z-index: 9999;
}

.buttons button {
    padding: 8px;
    width: 90px;
    background: transparent;
    font-family: 'Roboto', sans-serif;
    margin: 3px;
    cursor: pointer;
    border-radius: 3px;
}

.buttons #play-char {
    border: 1px solid rgb(0, 255, 0);
    color: rgb(0, 255, 0);
}

.buttons #play-char:hover {
    transition: 200ms;
    border: 1px solid rgb(0, 112, 0);
    color: rgb(0, 112, 0);
}

.buttons #delete {
    border: 1px solid rgb(255, 32, 32);
    color: rgb(255, 32, 32);
}

.buttons #delete:hover {
    transition: 200ms;
    border: 1px solid rgb(88, 10, 10);
    color: rgb(88, 10, 10);
}


.character-buttons {
    display: none;
}

.border-buttons {
    position: relative;
}

.btn {
    background: 0;
    outline: 0;
    font-weight: bold;
}

.btn-play {
    color: rgb(209, 209, 209);

    margin-left: 502px;
    margin-top: -120px;

    width: 150px;
    height: 45px;

    font-weight: bold;
    font-size: 50px;
    font-family: 'Roboto', sans-serif;
    background-color: rgb(0, 255, 0);
    border-radius: 0;
    transition: all 1.5s ease-in;

    animation: buttonClick1 2s;
}

@keyframes buttonClick1 {
    from {
        opacity: 0;
    }

    to { 
        opacity: 100;
    }
}

.btn-delete {
    color: rgb(255, 255, 255);

    margin-left: 700px;
    margin-top: -120px;

    width: 150px;
    height: 45px;

    font-weight: bold;
    font-size: 50px;
    font-family: 'Roboto', sans-serif;
    background-color: rgb(255, 32, 32);

    transition: all 1.5s ease-in;

    animation: buttonClick2 2s;
}

@keyframes buttonClick2 {
    from {
        opacity: 0;
    }

    to { 
        opacity: 100;
    }
}

.btn-play:hover {
    background-color: rgb(0, 204, 0);
    color: rgb(0, 116, 0);
}

.btn-delete:hover {
    background-color: rgb(175, 0, 0);
    color: rgb(116, 0, 0);
}

#box1 {
    animation: box1 2.0s;
}

#box2 {
    animation: box1 2.0s;
}

#box3 {
    animation: box1 2.0s;
}

@keyframes box1 {
    from {
        opacity: 0;
    }

    to { 
        opacity: 100;
    }
}

@keyframes box2 {
    from {
        opacity: 0;
    }

    to { 
        opacity: 100;
    }
}

@keyframes box3 {
    from {
        opacity: 0;
    }

    to { 
        opacity: 100;
    }
}


.choose-location {
    display: none;
    width: 100%;
    height: 100%;
    margin: 0;
    background-color: rgba(26, 26, 26, 1);
}

.choose-location #back {
    border: 2px solid rgba(33, 33, 33, 1);
    background-color: rgba(28, 28, 28, 1);
    color: yellow;
    outline: none;
    font-size: 22px;
    width: 120px;
    height: 60px;
    position: absolute;
    left: 30px;
    top: 30px;
    transition: ease-out 0.3s;
}

.choose-location #back:hover {
    border: 2px solid yellow;
}

.choose-location .locations {
    position: absolute;
    top: 46%;
    left: 50%;
    transform: translate(-50%, -50%)
}

.choose-location .locations .header {
    text-align: center;
    color: yellow;
    font-size: 30px;
    letter-spacing: 3px;
}

.choose-location .locations hr {
    background: rgb(28, 28, 28);
    border: 0.87px solid rgb(28, 28, 28);
    width: 140%;
    position: absolute;
    top: 6.5%;
    left: 50%;
    transform: translate(-50%, -50%)
}


.choose-location .locations button {
    border: 2px solid rgba(33, 33, 33, 1);
    background-color: rgba(28, 28, 28, 1);
    color: yellow;
    outline: none;
    margin-top: 10px;
    font-size: 28px;
    width: 380px;
    height: 100px;
    display: block;
    transition: ease-out 0.3s;
}

.choose-location .locations button:hover {
    border: 2px solid yellow;
}